;Info [ Npc Name{OddOldMan} X=343 Y=597 MapName={PrajnaIsland} ]
[@main]
;#SAY
There are some things that you should know if you want to\
timetravel back to the past. if your level is 40 or higher,\
then you will be able to go back to the paast by your own.\
For the people below level 40, it is simply impossible.\ \
<Is there still anyway?/@travel>\

[@travel]
;#SAY
If you really want to go back to the past, possess a piece\
of TimeStone. This piece of stone will help you to\
timetravel back to the past. But if your level is below 33,\
you can not timetravel even with the stone. I know it is\
expensive. If you don't want to buy it, try the drops from\
monsters. It may take some time but you can save money...\
<Buy/@buy1> TimeStonePiece\
<Sell/@sell1> TimestonePiece\
<Close/@exit>

[@buy1]
;#SAY
20,000 Gold Pieces for one piece... You want it?\ \
<Yes/@buy11>\
<No, too expensive/@exit>

[@buy11]
#IF
checkgold 20000
#ACT
take gold 20000
give TimeStonePiece
close
#ELSEACT
goto @nocash

[@nocash]
#SAY
You do not have 20,000 Gold Pieces!!\ \
<Close/@exit>

[@sell1]
#SAY
Alright, I will pay you good price!\
What about 10,000 gold, ok?\ \
<Ok/@sell11>\
<Next time/@exit>

[@sell11]
#IF
checkitem TimeStonePiece
#ACT
take TimeStonePiece
give gold 10000
close
#ELSEACT
goto @nothave

[@nothave]
#SAY
What?! You don't have it?\
Come back when you have it, ok?\ \
<Close/@exit>